home *** CD-ROM | disk | FTP | other *** search
/ The X-Philes (2nd Revision) / The X-Philes Number 1 (1995).iso / xphiles / hp48hor2 / asc2bin6.doc < prev    next >
Text File  |  1995-03-31  |  2KB  |  52 lines

  1. ASC2BIN.EXE, an improved ASC to HP 48 Binary file converter 
  2. From: Detlef Mueller <detlef@mwhh.hanse.de> 
  3. Newsgroups: comp.sources.hp48 
  4. Date: Wed, 23 Oct 1991 23:56:34 GMT 
  5.  
  6. [This is a great battery saver!  Instructions: At the DOS prompt, type: 
  7.  
  8.     ASC2BIN < File.asc > File 
  9.  
  10.  including the "<" and ">" symbols.  "File.asc" must be an ASC-format file, 
  11.  created with Bill Wickes' ->ASC program, and uploaded to disk in ASCII mode. 
  12.  (The *.ASC files on all Goodies Disks are examples of such files.) "File" 
  13.  will be the resulting binary downloadable version, the same as if you had 
  14.  downloaded the ASC version, run ASC-> on it, and uploaded that back to 
  15.  disk... but a lot faster and with no battery drain!  Note: You don't need to 
  16.  do this for the ASC files on the Goodies Disks; I've already done it for you. 
  17.  ASC2BIN is for the ASC files you get elsewhere. 
  18.  
  19.  There was an ASC2BIN.EXE on Goodies Disk #2, but it had bugs.  This one 
  20.  works. -jkh-] 
  21.  
  22. Hi, out there. 
  23.  
  24. In one of the articles in comp.sys.hp48, Chris Spell wrote that he has 
  25. problems downloading big "ASC only" programs. 
  26.  
  27. Here is a little ASC-to-binary converter (written in ANSI C) for anybody who 
  28. has the same problem or no UUDECODE. 
  29.  
  30. [Note: Need UUDECODE?  See UUDECODE.DOC on this disk.  -jkh-] 
  31.  
  32. Feed the program via stdin with an extracted ASC program; it will generate a 
  33. downloadable output to stdout. The output file size is limited to ~32 kbytes 
  34. (on UNIX no problem to change, but IMO not necessary :-). 
  35.  
  36. The 'unsigned' data type is assumed to be at least 16 bit in size. 
  37. ASCII character set is assumed. 
  38.  
  39. I wrote the program using BORLAND C++ under MesSy-DOS , but it shouldn't be 
  40. a problem to port it to other compilers/machines (operating system dependent 
  41. lines are marked in the C source code). 
  42.  
  43. CU, 
  44.     8-), Detlef 
  45.  
  46. P.S.    Sorry about the poor documentation and the low error checking. I've 
  47.     neither time to write a serious doc, nor time to extend the program, 
  48.     so if there are any questions or problems, feel free to mail me. DM 
  49.  
  50. [Note: This ASC2BIN is better than the one on Goodies Disk #2, which sometimes 
  51.  gave bogus results.  Do not use that one.  -jkh-] 
  52.